home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
fractal
/
kaos.lha
/
complib
/
free_ivector.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-01-26
|
127 b
|
11 lines
/*
### free memory for a 1-d integer array ###
*/
void free_ivector(v,nl,nh)
int *v;
int nl,nh;
{
free((char *) (v + nl));
}